home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 6-Apple⁄DEC Alliance / Solutions & Networking Guide / Macintosh Networking Guide / Macintosh Networking Guide / card_23245.txt < prev    next >
Text File  |  1990-04-17  |  18KB  |  800 lines

  1. -- card: 23245 from stack: in
  2. -- bmap block id: 23486
  3. -- flags: 0000
  4. -- background id: 21186
  5. -- name: Chooser
  6. ----- HyperTalk script -----
  7. on openCard
  8.   global holder,env,sol,NH,service,icons,iconlist,choice
  9.   global LH, TS,inc,margin,left, top, right, bottom--for locating
  10.   global hich, hiline, sel, fname--for tagging selected to deselect
  11.   put "Services Chooser" & return & "select a network service" into fld "Tell"
  12.   put "‚Ä¢ Select Network Services" into cd fld "services"
  13.   if env is "Mac" then
  14.     put "Macintosh" into cd fld "env"
  15.   else
  16.     put env into cd fld "env"
  17.   end if
  18.   --engine begin
  19.   put card field (env && "Network¬†Services") of card "Mac Grid" into holder
  20.   if holder is empty
  21.   then
  22.   put return & "No Solutions Installed In This Version" into fld "Tell"
  23.   exit openCard
  24. end if
  25. put "‚Ä¢ Select‚Äî" & return into cd fld "SolList"
  26. put "" into cd fld "choice"
  27. put "" into cd fld "sentence"
  28. set hilite of btn "Highlight" to false
  29. put cd fld env of cd "LimitNet" into cd fld "SolList"
  30. puticon
  31. parseicon
  32. change2
  33. change
  34. put icons into cd fld "icons"
  35. sub
  36. get the rect of cd field "icons"--this may vary with the field shown
  37. put item 1 of it into left
  38. put item 2 of it into top
  39. put item 3 of it into right
  40. put item 4 of it into bottom
  41. put the textHeight of cd field "icons" into LH
  42. put 60 into TS--‚Ä¢length of character‚Ä¢
  43. put 5 into inc
  44. put 5 into margin
  45. put empty into hich--put empty into select variables
  46. put empty into hiline
  47. put empty into sel
  48. end openCard
  49.  
  50.  
  51. on parse
  52.   global holder,NH
  53.   put empty into NH
  54.   repeat with i = 1 to the number of lines of holder
  55.     put item 3 of line i of holder into dotnames
  56.     repeat
  57.       put offset("‚Ä¢",dotnames) into num
  58.       if num is empty or num is 0 then exit repeat
  59.       put char 1 to (num - 1) of dotnames & return after NH
  60.       delete char 1 to num of dotnames
  61.     end repeat
  62.   end repeat
  63. end parse
  64.  
  65. on closeCard
  66.   global TS,sel,hich,hiline
  67.   put 90 into TS
  68.   put "" into fld "Tell"
  69.   put "" into cd fld "Service"
  70.   put empty into cd fld "Sentence"
  71.   hide cd fld "SolList"
  72.   if sel<>empty then
  73.     put sel into character hich of line hiline of cd field "icons"
  74.     put empty into sel
  75.   end if
  76. end closeCard
  77.  
  78. on putIcon
  79.   global iconList
  80.   put empty into iconList
  81.   if cd fld "sollist" contains "File Service" then
  82.     put "," after iconList
  83.   end if
  84.   if cd fld "sollist" contains "File Transfer" then
  85.     put "." after iconList
  86.   end if
  87.   if cd fld "sollist" contains "Print Service" then
  88.     put "3" after iconList
  89.   end if
  90.   if cd fld "sollist" contains "Terminal Emulation" then
  91.     put "5" after iconList
  92.   end if
  93.   if cd fld "sollist" contains "Translation" then
  94.     put "=" after iconList
  95.   end if
  96.   if cd fld "sollist" contains "Resource Sharing" then
  97.     put "9" after iconList
  98.   end if
  99.   if cd fld "sollist" contains "Network Management" then
  100.     put "1" after iconList
  101.   end if
  102.   if cd fld "sollist" contains "Mail Service" then
  103.     put ";" after iconList
  104.   end if
  105.   if cd fld "sollist" contains "Programming" then
  106.     put "7" after iconList
  107.   end if
  108.   --if cd fld "sollist" contains "Virtual Disk" then
  109.   --  put "?" after iconList
  110.   --end if
  111. end putIcon
  112.  
  113. on parseIcon
  114.   global iconlist,icons
  115.   put empty into icons
  116.   put (length of iconlist)/2 into num
  117.   put round  of num into num
  118.   put 1 into x
  119.   repeat with i = 1 to num
  120.     put char x of iconlist after icons
  121.     put char x + 1 of iconlist & return after icons
  122.     put x + 2 into x
  123.   end repeat
  124. end parseicon
  125.  
  126. Function theChar x
  127. global right, left, ts, margin
  128. put empty into chnum
  129. put right-left into temp
  130. put (temp div TS) into int
  131. put left+margin into range1
  132. put range1 + TS into range2
  133. repeat with z=1 to int
  134.   if x >= range1 and x< range2
  135.   then
  136.   put  z into chnum
  137.   return(chnum)
  138.   exit repeat
  139. else
  140.   put range2 into range1
  141.   put range1 + TS into range2
  142. end if
  143. end repeat
  144. end theChar
  145.  
  146. on change
  147.   global service
  148.   if cd fld "sentence" is "," then
  149.     put "File Service" into service
  150.   end if
  151.   if cd fld "sentence" is "." then
  152.     put "File Transfer" into service
  153.   end if
  154.   if cd fld "sentence" is "3" then
  155.     put "Print Service" into service
  156.   end if
  157.   if cd fld "sentence" is "5" then
  158.     put "Terminal Emulation" into service
  159.   end if
  160.   if cd fld "sentence" is "=" then
  161.     put "Translation" into service
  162.   end if
  163.   if cd fld "sentence" is "9" then
  164.     put "Resource Sharing" into service
  165.   end if
  166.   if cd fld "sentence" is "1" then
  167.     put "Network Management" into service
  168.   end if
  169.   if cd fld "sentence" is ";" then
  170.     put "Mail Service" into service
  171.   end if
  172.   if cd fld "sentence" is "7" then
  173.     put "Programming" into service
  174.   end if
  175.   --if cd fld "sentence" is "?" then
  176.   --  put "Virtual Disk" into service
  177.   --end if
  178.   if service is in cd fld "sollist" then
  179.     put service into cd fld "choice"
  180.     set hilite of btn "Highlight" to true
  181.   end if
  182. end change
  183.  
  184. on change2
  185.   global service,choice
  186.   if service is "File Service" then
  187.     put "," into choice
  188.   end if
  189.   if service is "File Transfer" then
  190.     put "." into choice
  191.   end if
  192.   if service is "Print Service" then
  193.     put "3" into choice
  194.   end if
  195.   if service is "Terminal Emulation" then
  196.     put "5" into choice
  197.   end if
  198.   if service is "Translation" then
  199.     put "=" into choice
  200.   end if
  201.   if service is "Resource Sharing" then
  202.     put "9" into choice
  203.   end if
  204.   if service is "Network Management" then
  205.     put "1" into choice
  206.   end if
  207.   if service is "Mail Service" then
  208.     put ";" into choice
  209.   end if
  210.   if service is "Programming" then
  211.     put "7" into choice
  212.   end if
  213.   --if service is "Virtual Disk" then
  214.   --  put "?" into choice
  215.   --end if
  216.   if service is in cd fld "sollist" then
  217.     put choice into cd fld "sentence"
  218.   end if
  219. end change2
  220.  
  221. on sub
  222.   global choice
  223.   put chartonum of choice + 1 into temp
  224.   put numtochar of temp into inverted
  225.   put Substitute(choice, inverted, cd fld "icons") into cd field "icons"
  226. end sub
  227.  
  228.  
  229.  
  230.  
  231. -- part 43 (field)
  232. -- low flags: 01
  233. -- high flags: 0000
  234. -- rect: left=278 top=113 right=130 bottom=488
  235. -- title width / last selected line: 0
  236. -- icon id / first selected line: 0 / 0
  237. -- text alignment: 0
  238. -- font id: 3
  239. -- text size: 12
  240. -- style flags: 0
  241. -- line height: 16
  242. -- part name: 
  243.  
  244.  
  245. -- part 10 (field)
  246. -- low flags: 81
  247. -- high flags: 0001
  248. -- rect: left=279 top=57 right=76 bottom=364
  249. -- title width / last selected line: 0
  250. -- icon id / first selected line: 0 / 0
  251. -- text alignment: 0
  252. -- font id: 0
  253. -- text size: 12
  254. -- style flags: 0
  255. -- line height: 16
  256. -- part name: env
  257. ----- HyperTalk script -----
  258. on mouseUp
  259.   show cd btn "envListTitleHiliter"
  260.   show cd field "envList"
  261. end mouseUp
  262.  
  263. On mouseDown
  264.   Global ClickSND
  265.   play ClickSND
  266. End mouseDown
  267.  
  268. on mouseEnter
  269.   changeCurs 6069
  270.   put "Change Environment Button" & return & "click to see choices" into fld "Tell"
  271. end mouseEnter
  272.  
  273. on mouseLeave
  274.   changeCurs 69
  275.   put empty into fld "Tell"
  276. end mouseleave
  277.  
  278.  
  279.  
  280. -- part 33 (button)
  281. -- low flags: 00
  282. -- high flags: 4000
  283. -- rect: left=279 top=131 right=150 bottom=487
  284. -- title width / last selected line: 0
  285. -- icon id / first selected line: 0 / 0
  286. -- text alignment: 1
  287. -- font id: 0
  288. -- text size: 12
  289. -- style flags: 0
  290. -- line height: 16
  291. -- part name: highlight
  292. ----- HyperTalk script -----
  293. on mouseUp
  294.   set the hilite of me to true
  295. end mouseUp
  296.  
  297.  
  298.  
  299. -- part 11 (field)
  300. -- low flags: 01
  301. -- high flags: 0001
  302. -- rect: left=279 top=83 right=102 bottom=461
  303. -- title width / last selected line: 0
  304. -- icon id / first selected line: 0 / 0
  305. -- text alignment: 0
  306. -- font id: 0
  307. -- text size: 12
  308. -- style flags: 0
  309. -- line height: 16
  310. -- part name: services
  311. ----- HyperTalk script -----
  312. on mouseUp
  313.   show cd btn "servicesListHiliter"
  314.   show cd field "solList"
  315. end mouseUp
  316.  
  317. On mouseDown
  318.   Global ClickSND
  319.   play ClickSND
  320. End mouseDown
  321.  
  322. on mouseEnter
  323.   changeCurs 6069
  324.   put "Change Services Button" & return & "click to see choices" into fld "Tell"
  325. end mouseEnter
  326.  
  327. on mouseLeave
  328.   changeCurs 69
  329.   put empty into fld "Tell"
  330. end mouseleave
  331.  
  332.  
  333.  
  334. -- part 30 (field)
  335. -- low flags: 01
  336. -- high flags: 0002
  337. -- rect: left=44 top=35 right=53 bottom=214
  338. -- title width / last selected line: 0
  339. -- icon id / first selected line: 0 / 0
  340. -- text alignment: 0
  341. -- font id: 3
  342. -- text size: 12
  343. -- style flags: 0
  344. -- line height: 16
  345. -- part name: 
  346.  
  347.  
  348. -- part 31 (field)
  349. -- low flags: 81
  350. -- high flags: 0001
  351. -- rect: left=130 top=0 right=19 bottom=293
  352. -- title width / last selected line: 0
  353. -- icon id / first selected line: 0 / 0
  354. -- text alignment: 0
  355. -- font id: 0
  356. -- text size: 12
  357. -- style flags: 0
  358. -- line height: 16
  359. -- part name: service
  360. ----- HyperTalk script -----
  361. on mouseUp
  362.   show cd btn "currentServiceHiliter"
  363.   show cd btn "servicesListHiliter"
  364.   show cd field "solList"
  365. end mouseUp
  366.  
  367. on mouseDown
  368.   Global ClickSND
  369.   play ClickSND
  370. end mouseDown
  371.  
  372. on mouseEnter
  373.   changeCurs 6069
  374.   put "Change Service Button" & return & "click to see choices" into fld "Tell"
  375. end mouseEnter
  376.  
  377. on mouseLeave
  378.   changeCurs 69
  379.   put empty into fld "Tell"
  380. end mouseleave
  381.  
  382.  
  383.  
  384.  
  385. -- part 34 (field)
  386. -- low flags: 01
  387. -- high flags: 0007
  388. -- rect: left=44 top=52 right=272 bottom=214
  389. -- title width / last selected line: 0
  390. -- icon id / first selected line: 0 / 0
  391. -- text alignment: 0
  392. -- font id: 202
  393. -- text size: 64
  394. -- style flags: 8192
  395. -- line height: 74
  396. -- part name: Icons
  397. ----- HyperTalk script -----
  398. On mouseDown
  399.   Global ClickSND
  400.   play ClickSND
  401. End mouseDown
  402.  
  403. on mouseUp
  404.   global LH, TS,inc,left, top, right, bottom --set on open card
  405.   global hich, hiline,sel,service,choice,icons
  406.   set lockscreen to true
  407.   get the clickloc
  408.   put item 1 of it into x
  409.   put item 2 of it into y
  410.   --‚Ä¢ deselect
  411.   if sel<>empty then
  412.     put sel into character hich of line hiline of cd field "Icons"
  413.   end if
  414.   --need to determine where 1st char goes depending on font
  415.   --then calculate distance between centers of char
  416.   -- from this determine valid select region
  417.   --‚Ä¢Locate‚Ä¢
  418.   --determines which character in a space free field was clicked on
  419.   --NEED CARRIAGE RETURN
  420.   put selectionAndHiliter() into lnum
  421.   put theChar(x) into chnum
  422.   if chnum is empty or lnum is empty
  423.   then exit mouseUp
  424. else
  425.   put character chnum of line Lnum of cd field "Icons" into Choice
  426.   if choice=return or chnum=space
  427.   then exit mouseUp
  428. end if
  429. --•select•
  430. put chnum into hich
  431. put lnum into hiLine
  432. put choice into sel
  433. put numtochar(chartonum(sel)+1) into character hich of line hiline of cd field "Icons"
  434. put choice into cd field "sentence"
  435. change
  436. put service into cd fld "Choice"
  437. set lockscreen to true
  438. set cursor to watch
  439. --send openCard to this card
  440. put icons into cd fld "icons"
  441. sub
  442. set cursor to hand
  443. set lockscreen to false
  444. end mouseUp
  445.  
  446. on mouseEnter
  447.   changeCurs 6069
  448.   put "Services Options" & return & "click on service to select" into fld "Tell"
  449. end mouseEnter
  450.  
  451. on mouseLeave
  452.   changeCurs 69
  453.   put empty into fld "Tell"
  454. end mouseLeave
  455.  
  456.  
  457. -- part 5 (field)
  458. -- low flags: 01
  459. -- high flags: 0000
  460. -- rect: left=280 top=131 right=149 bottom=486
  461. -- title width / last selected line: 0
  462. -- icon id / first selected line: 0 / 0
  463. -- text alignment: 0
  464. -- font id: 3
  465. -- text size: 12
  466. -- style flags: 2048
  467. -- line height: 16
  468. -- part name: Choice
  469. ----- HyperTalk script -----
  470. on mouseUp
  471.   global service
  472.   get me
  473.   if it is empty
  474.   then
  475.   put "Choose a Service!" into fld "Tell"
  476.   exit mouseUp
  477. else
  478.   put it into service
  479.   set hilite of btn "Highlight" to true
  480. end if
  481. end mouseUp
  482.  
  483. On mouseDown
  484.   Global ClickSND
  485.   play ClickSND
  486. End mouseDown
  487.  
  488. on mouseEnter
  489.   changeCurs 6069
  490.   put "Service Chosen Field" & return & "click to return to room" into fld "Tell"
  491. end mouseEnter
  492.  
  493. on mouseLeave
  494.   changeCurs 69
  495.   put empty into fld "Tell"
  496. end mouseleave
  497.  
  498.  
  499.  
  500. -- part 35 (field)
  501. -- low flags: 01
  502. -- high flags: 0000
  503. -- rect: left=280 top=151 right=210 bottom=350
  504. -- title width / last selected line: 0
  505. -- icon id / first selected line: 0 / 0
  506. -- text alignment: 0
  507. -- font id: 202
  508. -- text size: 64
  509. -- style flags: 8192
  510. -- line height: 76
  511. -- part name: sentence
  512. ----- HyperTalk script -----
  513. on mouseEnter
  514.   put "Current Service" & return & "click on OK button" into fld "Tell"
  515. end mouseEnter
  516.  
  517. on mouseLeave
  518.   put empty into fld "Tell"
  519. end mouseLeave
  520.  
  521.  
  522. -- part 15 (field)
  523. -- low flags: 81
  524. -- high flags: 0002
  525. -- rect: left=278 top=102 right=236 bottom=488
  526. -- title width / last selected line: 0
  527. -- icon id / first selected line: 0 / 0
  528. -- text alignment: 0
  529. -- font id: 0
  530. -- text size: 12
  531. -- style flags: 0
  532. -- line height: 16
  533. -- part name: solList
  534. ----- HyperTalk script -----
  535. on mouseUp
  536.   global service,choice,icons
  537.   put selectionAndHiliter() into cardline
  538.   get line cardline of me
  539.   if it is "‚Ä¢ Select‚Äî" or it is empty then
  540.     hide cd btn "currentServiceHiliter"
  541.     hide cd btn "servicesListHiliter"
  542.     hide cd btn "solListHiliter"
  543.     hide me
  544.     exit mouseUp
  545.   else
  546.     hide cd btn "currentServiceHiliter"
  547.     hide cd btn "servicesListHiliter"
  548.     hide cd btn "solListHiliter"
  549.     hide me
  550.     put line cardline of me into service
  551.     put service into cd fld "Service"
  552.     put service into cd fld "Choice"
  553.     set hilite of btn "Highlight" to true
  554.     change2
  555.     set cursor to watch
  556.     set lockscreen to true
  557.     put choice into cd fld "sentence"
  558.     put icons into cd fld "icons"
  559.     sub
  560.     set cursor to hand
  561.     set lockscreen to true
  562.   end if
  563. end mouseUp
  564.  
  565. On mouseDown
  566.   Global ClickSND
  567.   play ClickSND
  568. End mouseDown
  569.  
  570. on mouseEnter
  571.   changeCurs 6069
  572.   put "Services Field" & return & "click to choose" into fld "Tell"
  573. end mouseEnter
  574.  
  575. on mouseLeave
  576.   changeCurs 69
  577.   put empty into fld "Tell"
  578. end mouseleave
  579.  
  580.  
  581.  
  582. -- part 37 (button)
  583. -- low flags: 80
  584. -- high flags: 4000
  585. -- rect: left=279 top=199 right=215 bottom=487
  586. -- title width / last selected line: 0
  587. -- icon id / first selected line: 0 / 0
  588. -- text alignment: 1
  589. -- font id: 0
  590. -- text size: 12
  591. -- style flags: 0
  592. -- line height: 16
  593. -- part name: solListHiliter
  594.  
  595.  
  596. -- part 38 (button)
  597. -- low flags: 80
  598. -- high flags: 4000
  599. -- rect: left=279 top=83 right=102 bottom=487
  600. -- title width / last selected line: 0
  601. -- icon id / first selected line: 0 / 0
  602. -- text alignment: 1
  603. -- font id: 0
  604. -- text size: 12
  605. -- style flags: 0
  606. -- line height: 16
  607. -- part name: servicesListHiliter
  608.  
  609.  
  610. -- part 39 (button)
  611. -- low flags: 80
  612. -- high flags: 4000
  613. -- rect: left=278 top=55 right=75 bottom=364
  614. -- title width / last selected line: 0
  615. -- icon id / first selected line: 0 / 0
  616. -- text alignment: 1
  617. -- font id: 0
  618. -- text size: 12
  619. -- style flags: 0
  620. -- line height: 16
  621. -- part name: envListTitleHiliter
  622.  
  623.  
  624. -- part 41 (button)
  625. -- low flags: 80
  626. -- high flags: 4000
  627. -- rect: left=127 top=0 right=19 bottom=292
  628. -- title width / last selected line: 0
  629. -- icon id / first selected line: 0 / 0
  630. -- text alignment: 1
  631. -- font id: 0
  632. -- text size: 12
  633. -- style flags: 0
  634. -- line height: 16
  635. -- part name: currentServiceHiliter
  636.  
  637.  
  638. -- part 42 (button)
  639. -- low flags: 00
  640. -- high flags: 0000
  641. -- rect: left=215 top=61 right=119 bottom=274
  642. -- title width / last selected line: 0
  643. -- icon id / first selected line: 0 / 0
  644. -- text alignment: 1
  645. -- font id: 0
  646. -- text size: 12
  647. -- style flags: 0
  648. -- line height: 16
  649. -- part name: iconsHiliter
  650.  
  651.  
  652. -- part 14 (field)
  653. -- low flags: 81
  654. -- high flags: 0002
  655. -- rect: left=278 top=75 right=225 bottom=364
  656. -- title width / last selected line: 0
  657. -- icon id / first selected line: 0 / 0
  658. -- text alignment: 0
  659. -- font id: 0
  660. -- text size: 12
  661. -- style flags: 0
  662. -- line height: 16
  663. -- part name: envList
  664. ----- HyperTalk script -----
  665. on mouseUp
  666.   global env
  667.   --‚àÜ Get selection
  668.   put selectionAndHiliter() into cardline
  669.   get line cardline of me
  670.   if it is empty then
  671.     hide cd btn "envListHiliter"
  672.     hide cd btn "envListTitleHiliter"
  673.     hide me
  674.     exit mouseUp
  675.   else
  676.     put line cardline of me into cd fld "env"
  677.     put line cardline of me into env
  678.     if env is "Macintosh" then put "Mac" into env
  679.   end if
  680.   set cursor to watch
  681.   hide cd btn "envListHiliter"
  682.   hide cd btn "envListTitleHiliter"
  683.   hide me
  684.   send openCard to this card
  685. end mouseUp
  686.  
  687. on mouseDown
  688.   Global ClickSND
  689.   play ClickSND
  690. End mouseDown
  691.  
  692. on mouseEnter
  693.   changeCurs 6069
  694.   put "Environments Field" & return & "click to see choices" into fld "Tell"
  695. end mouseEnter
  696.  
  697. on mouseLeave
  698.   changeCurs 69
  699.   put empty into fld "Tell"
  700. end mouseleave
  701.  
  702.  
  703.  
  704.  
  705. -- part 40 (button)
  706. -- low flags: 80
  707. -- high flags: 4000
  708. -- rect: left=279 top=107 right=125 bottom=363
  709. -- title width / last selected line: 0
  710. -- icon id / first selected line: 0 / 0
  711. -- text alignment: 1
  712. -- font id: 0
  713. -- text size: 12
  714. -- style flags: 0
  715. -- line height: 16
  716. -- part name: envListHiliter
  717.  
  718.  
  719. -- part 45 (button)
  720. -- low flags: 00
  721. -- high flags: 4000
  722. -- rect: left=0 top=0 right=28 bottom=512
  723. -- title width / last selected line: 0
  724. -- icon id / first selected line: 0 / 0
  725. -- text alignment: 1
  726. -- font id: 0
  727. -- text size: 12
  728. -- style flags: 0
  729. -- line height: 16
  730. -- part name: Title bar
  731.  
  732.  
  733. -- part 46 (field)
  734. -- low flags: 01
  735. -- high flags: 0000
  736. -- rect: left=12 top=0 right=30 bottom=279
  737. -- title width / last selected line: 0
  738. -- icon id / first selected line: 0 / 0
  739. -- text alignment: 0
  740. -- font id: 156
  741. -- text size: 18
  742. -- style flags: 2048
  743. -- line height: 24
  744. -- part name: FloorName
  745.  
  746.  
  747. -- part contents for card part 14
  748. ----- text -----
  749. Digital
  750. IBM
  751. Macintosh
  752. PC
  753. Tandem
  754. UNIX
  755. Wang
  756.  
  757. -- part contents for card part 10
  758. ----- text -----
  759. Macintosh
  760.  
  761. -- part contents for card part 11
  762. ----- text -----
  763. ‚Ä¢ Select Network Services
  764.  
  765. -- part contents for card part 30
  766. ----- text -----
  767. Select a Network Service:
  768.  
  769. -- part contents for card part 15
  770. ----- text -----
  771. File Service
  772. File Transfer
  773. Print Service
  774. Network Management
  775. Mail Service
  776. Terminal Emulation
  777. Development Tools
  778. Translation
  779. Resource Sharing
  780.  
  781.  
  782. -- part contents for card part 34
  783. ----- text -----
  784. ,.
  785. 35
  786. =9
  787. 1
  788.  
  789.  
  790. -- part contents for card part 43
  791. ----- text -----
  792. Current Network Service:
  793.  
  794. -- part contents for card part 46
  795. ----- text -----
  796. Network Services Chooser
  797.  
  798. -- part contents for card part 5
  799. ----- text -----
  800. File Service